home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-05-07 | 1.0 KB | 53 lines |
- TREE= /usr/postgres
- OD= /usr/postgres/obj.linux
- SD= /usr/postgres/src
- PORTNAME= linux
- PORTDIR= port/linux
- PORTLDFLAGS= # -static
-
- GCFLAGS= -O2 # -g -Wmissing-prototypes -DNO_ASSERT_CHECKING
- BKIFLAGS=
- LDFLAGS= $(GCFLAGS)
- CFLAGS= $(GCFLAGS) \
- -I$(SD)/lib/H \
- -I$(SD)/lib/H/obsolete \
- -I$(OD)/lib/H \
- -I$(SD)/$(PORTDIR) \
- -D__USE_BSD_SIGNAL
- DIRS= ./dirs.mk
- LIBS= -lm -lipc
- DEMOCCOPTS=
- #
- # Makefile for making the object files to be loaded
- # into the demo.
- # $Header: /private/postgres/demo/RCS/makefile.source,v 1.2 1991/11/19 17:56:36 mer Exp $
- #
- .SUFFIXES: .o .c .temp .pq
-
- all: circle.o boxarea.o overpaid.o set-up-1.pq
-
- clean:
- rm -f *.o *.pq
-
- set-up-1.pq: set-up-1.temp
-
- .temp.pq:
- -@ echo "producing the setup script $(@F)" ; \
- C=`pwd`; sed -e "s:_CWD_:$$C:" < $(<F) > $(@F)
-
- .c.o:
- cc $(DEMOCCOPTS) -I../src/lib/H -c $(<F)
-
-
- #
- # DEPENDENCIES (generated, do not modify by hand)
- #
- circle.o: circle.c
- circle.o: /usr/include/stdio.h
- circle.o: ../src/lib/H/utils/geo-decls.h
- circle.o: /usr/include/math.h
-
- boxarea.o: boxarea.c
-
- overpaid.o: overpaid.c
-